home *** CD-ROM | disk | FTP | other *** search
/ Amiga Format CD 46 / Amiga Format CD46 (1999-10-20)(Future Publishing)(GB)[!][issue 1999-12].iso / -in_the_mag- / reader_requests / scilab / man / man-part1 / cat2 / plot2d1.2 < prev    next >
Text File  |  1999-09-16  |  1KB  |  67 lines

  1.  
  2.  
  3.  
  4. plot2d1(2)                     Scilab Function                     plot2d1(2)
  5.  
  6.  
  7.  
  8.  
  9.  
  10.  
  11. NAME
  12.   plot2d1 - multiple plot of functions
  13.  
  14. CALLING SEQUENCE
  15.   plot2d1(str,x,y,[style,strf,leg,rect,nax])
  16.  
  17. PARAMETERS
  18.  
  19.   str  : is a string of length three "abc"
  20.  
  21.        a : can have the following values : e | o | g
  22.  
  23.          e : means empty and specifies the fact that the value of x won't be
  24.            used ( the x values are supposed to be regularly spaced) . The
  25.            user must anyway give a value to the x parameter when calling
  26.            plot2d1, for example plot2d1("enn",1,y).
  27.  
  28.          o : stands for one. if there are many curves, they all have the same
  29.            x-values ( x is of size x(n,1) and y of size y(n,n1). for example
  30.            :
  31.             plot2d1("onn",(1:10)',[sin(1:10);cos(1:10)]')
  32.  
  33.          g : stands for general. x and y must then have the same size
  34.  
  35.        b,c
  36.          : can have the values  n or l.
  37.  
  38.          b=l       : a logarithmic axis is used on the X-axis
  39.  
  40.          c=l       : a logarithmic axis is used on the Y-axis
  41.  
  42. DESCRIPTION
  43.   plot2d1 simultaneously plot a set of 2D curves.  Same as plot2d but with
  44.   one more argument str which enables logarithmic axis, and less specifica-
  45.   tion for x.
  46.  
  47.   Enter the command  plot2d1() to see a demo.
  48.  
  49. SEE ALSO
  50.   plot2d
  51.  
  52. AUTHOR
  53.   J.Ph.C..
  54.  
  55.  
  56.  
  57.  
  58.  
  59.  
  60.  
  61.  
  62.  
  63.  
  64.  
  65.  
  66.  
  67.